home *** CD-ROM | disk | FTP | other *** search
/ The Ultimate Frank Lloyd…ght - America's Architect / Ultimate Frank Lloyd Wright, The - America's Architect (1994)(Microsoft Home).iso / pre / flw / flweh.dir / 00195_Script_195 < prev    next >
Text File  |  1994-11-15  |  942b  |  49 lines

  1. on startMovie
  2.   cursor 4
  3.   global nowFrame, currMM
  4.   set currMM = "FLWWT"
  5.   
  6.   preLoadCast 1,3
  7.   
  8.   repeat with i = 21 to 23
  9.     puppetSprite i, TRUE
  10.     set the immediate of sprite i to TRUE
  11.   end repeat
  12.   set the stretch of sprite 23 to FALSE
  13. end startMovie
  14.  
  15. on stepMovie
  16.   global nowFrame,currFrame
  17.   if nowFrame  <> currFrame then
  18.     seeAlsoList
  19.     set currFrame = nowFrame
  20.   end if
  21. end stepMovie
  22.  
  23. on stopMovie
  24.   set the castNum of sprite 21 to 1050
  25.   puppetSprite 21, FALSE
  26.   put " " into field "SeeAlsoText"
  27.   updateStage
  28. end stopMovie
  29.  
  30. on saveLocals
  31.   global lastMovie, lastFrame, nowFrame
  32.   set lastFrame = nowFrame
  33.   set lastMovie = "FLWEH"
  34. end saveLocals
  35.  
  36. on buttonState
  37.   global FrankNav, bFlag
  38.   
  39.   if rollover(5) then
  40.     cursor [1067,1068]
  41.   else
  42.     cursor -1
  43.   end if
  44.   
  45.   if (the mouseV > 200) or (bFlag = TRUE) then
  46.     set bFlag = FALSE
  47.     doState
  48.   end if
  49. end buttonState